home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / text / faqs / motif-faq.part4 < prev    next >
Encoding:
Internet Message Format  |  1994-04-16  |  62.3 KB

  1. Subject: Motif FAQ (Part 4 of 5)
  2. Newsgroups: comp.windows.x.motif,news.answers,comp.answers
  3. From: dealy@kong.gsfc.nasa.gov (Brian Dealy)
  4. Date: 14 Apr 1994 15:20:37 -0400
  5.  
  6.  
  7. Archive-name: motif-faq/part4
  8. Last-modified: APR 04, 1994
  9. Version: 3.6
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16. -----------------------------------------------------------------------------
  17. Subject: 96)  TOPIC: XMSTRING
  18.  
  19. -----------------------------------------------------------------------------
  20. Subject: 97)  How can I get the Ascii text out of an XmString?
  21.  
  22. Answer: To get the first line of text from a string created left-to-right
  23.  
  24.  
  25.         char *str;
  26.         XmString xmstr;
  27.  
  28.         /* stuff to create xmstr */
  29.         ...
  30.  
  31.         /* set str to point to the text */
  32.         XmStringGetLtoR(xmstr, XmSTRING_DEFAULT_CHARSET, &str);
  33.         /* use the string */
  34.         ...
  35.  
  36.         /* and reclaim space */
  37.         XtFree(str);
  38.  
  39.  
  40. -----------------------------------------------------------------------------
  41. Subject: 98)  When can XmStrings used as resources be freed?
  42.  
  43. Answer: The policy OSF have been trying to enforce is that if you set an
  44. XmString or XmStringTable resource, the application is responsible for freeing
  45. the XmStrings used because the widget makes a copy.  If you get an XmString
  46. resource, then the application must free the value gotten.  If you get an
  47. XmStringTable, then the application should NOT free the value gotten.  If the
  48. application wants to manipulate it, it should make a copy first. This policy
  49. appears to be implemented progressively, so may be less true for Motif 1.0
  50. than 1.1.
  51.  
  52. -----------------------------------------------------------------------------
  53. Subject: 99)  Why doesn't XmStringGetNextSegment() work properly?
  54.  
  55. Answer: The documentation in Motif 1.0 is in error. Instead of
  56.  
  57.         XmStringGetnextSegment(context, ...)
  58.         XmStringContext * context;
  59.  
  60. it should be
  61.  
  62.         XmStringGetnextSegment(context, ...)
  63.         XmStringContext context;
  64.  
  65. i.e. with no indirection.
  66.  
  67.  
  68. -----------------------------------------------------------------------------
  69. Subject: 100)  Why does using XmStringDraw cause a Bad Font error?
  70.  
  71. [Last modified: May 93]
  72.  
  73. Answer: From Thomas Berlage (berlage@gmdzi.gmd.de): You could call this a bug
  74. in Motif. You pass a GC to XmStringDraw, however, Motif wants to use the fonts
  75. from the font list to draw the string.  Therefore it replaces the font of the
  76. GC temporarily with some fonts of its own as specified in the font list. In
  77. the end it tries to restore the old font of the GC. There comes the problem:
  78.  
  79. If a GC uses the default font, the client side GC structure does not have a
  80. valid font id (that is the 0xffffffff you may see in the error message). Motif
  81. tries to restore this invalid id at the end.
  82.  
  83. The workaround is: Before drawing with XmStringDraw, set the font id of the GC
  84. to any valid font id, for example using
  85.  
  86.       XSetFont (display, gc, XLoadFont (display, "fixed"));
  87.  
  88.  
  89.  
  90.  
  91. -----------------------------------------------------------------------------
  92. Subject: 101)  TOPIC: DIALOGS
  93.  
  94. -----------------------------------------------------------------------------
  95. Subject: 102)  How do I stop my dialog disappearing when I press the help
  96. button?
  97.  
  98. Answer: Bulletin board has the resource autoUnmanage which defaults to True.
  99. This unmanages the widget when any button child is activated - including the
  100. help button.  Set this to False to stop it disappearing. Note that you then
  101. have to unmanage the bulletin board yourself when any other button is
  102. activated.
  103.  
  104. -----------------------------------------------------------------------------
  105. Subject: 103)  How do I make my own dialog?  I want a dialog with my own set
  106. of buttons that stretch and shrink like the ones in e.g. PromptDialog and its
  107. own contents.
  108.  
  109. Answer: Start off with say a PromptDialog. Unmanage the buttons you don't want
  110. or manage the Apply button if you want another. Unmanage the other bits of the
  111. selection box you don't want. You can add another WorkArea child to the
  112. selection box for any extra stuff you want.
  113.  
  114.     /* Copyright 1990, Kee Hinckley and Brian Holt Hawthorne */
  115.     /* Permission granted for any use, provided this copyright */
  116.     /* notice is maintained. */
  117.  
  118.     /* Create a dialog box */
  119.     argcount = setArgs(&args, XmNautoUnmanage, False, NULL);
  120.     SomeDialog = XmCreatePromptDialog(mainShell, "someDialog", args, argcount);
  121.  
  122.     /* Now get rid of the things we don't want */
  123.     child = XmSelectionBoxGetChild(SomeDialog, XmDIALOG_SELECTION_LABEL);
  124.     XtUnmanageChild(child);
  125.     child = XmSelectionBoxGetChild(SomeDialog, XmDIALOG_TEXT);
  126.     XtUnmanageChild(child);
  127.  
  128.     /* set the callbacks, and make sure the buttons we want are there */
  129.     child = XmSelectionBoxGetChild(SomeDialog, XmDIALOG_OK_BUTTON);
  130.     XtAddCallback(child, XmNactivateCallback, callSomeFunc, someArg);
  131.     XtAddCallback(child, XmNactivateCallback, unManage, SomeDialog);
  132.     XtManageChild(child);
  133.     child = XmSelectionBoxGetChild(SomeDialog, XmDIALOG_APPLY_BUTTON);
  134.     XtAddCallback(child, XmNactivateCallback, callSomeFunc, someOtherArg);
  135.     XtManageChild(child);
  136.     child = XmSelectionBoxGetChild(SomeDialog, XmDIALOG_CANCEL_BUTTON);
  137.     XtAddCallback(child, XmNactivateCallback, dialogUnmanage, SomeDialog);
  138.     XtManageChild(child);
  139.  
  140.     /* Add a new work area. This can be any manager. */
  141.     child = XmCreateForm(SomeDialog, "someForm", NULL, 0);
  142.     XtManageChild(child);
  143.  
  144.     /* and fill it up... */
  145.     something = doYourStuff(child);
  146.  
  147. another Answer:
  148.  
  149.         I had a some people asking about my xmSmartMessageBoxWidget
  150.  
  151.         It's public domain, and needs Motif-1.2  and is available at
  152.         ftp.x.org:/contrib/widget/SmartMB.tar.Z.
  153.  
  154.         The basic idea behind it is that it allows the programmer to
  155.         specify the management of child widgets in 4 areas: Label, Control,
  156.         Separator and Action.  You can have up to 1 Label, 1 Control,
  157.         1 Separator and as many Action children as you want.  It does not
  158.         REQUIRE any of these, and there is no unmanaging of extra widgets,
  159.         as the programmer creates what is needed.
  160.  
  161.         Thanks for the smart dialog info to:         John L. Cwikla
  162.         Wolfram Research, Inc.          cwikla@wri.com
  163.  
  164.  
  165.  
  166.  
  167. -----------------------------------------------------------------------------
  168. Subject: 104)  How come the title bars for my dialogs now have "_popup" or
  169. "<-popup" concatenated onto the widget name?
  170.  
  171.  
  172. Answer: Motif 1.0.3 (?) "fixed" things such that title bars without an
  173. explicit dialogTitle setting use the widget name with "_popup" or whatever
  174. added on.  Set the dialogTitle resource explicitly if you don't want this new
  175. default naming scheme.
  176.  
  177. -----------------------------------------------------------------------------
  178. Subject: 105)  How can I force a dialog window to display?  I manage a
  179. "working" dialog, and do some computing, but the dialog window appears blank
  180. until the work has finished.  How can I force it to be displayed?
  181.  
  182. Answer: Use this.  (David Brooks, Systems Engineering, Open Software
  183. Foundation)
  184.  
  185. /*
  186.  * This procedure will ensure that, if a dialog window is being mapped,
  187.  * its contents become visible before returning.  It is intended to be
  188.  * used just before a bout of computing that doesn't service the display.
  189.  * You should still call XmUpdateDisplay() at intervals during this
  190.  * computing if possible.
  191.  *
  192.  * The monitoring of window states is necessary because attempts to map
  193.  * the dialog are redirected to the window manager (if there is one) and
  194.  * this introduces a significant delay before the window is actually mapped
  195.  * and exposed.  This code works under mwm, twm, uwm, and no-wm.  It
  196.  * doesn't work (but doesn't hang) with olwm if the mainwindow is iconified.
  197.  *
  198.  * The argument to ForceDialog is any widget in the dialog (often it
  199.  * will be the BulletinBoard child of a DialogShell).
  200.  */
  201.  
  202. ForceDialog(w)
  203.      Widget w;
  204. {
  205.   Widget diashell, topshell;
  206.   Window diawindow, topwindow;
  207.   Display *dpy;
  208.   XWindowAttributes xwa;
  209.   XEvent event;
  210.   XtAppContext cxt;
  211.  
  212. /* Locate the shell we are interested in.  In a particular instance, you
  213.  * may know these shells already.
  214.  */
  215.  
  216.   for (diashell = w;
  217.        !XtIsShell(diashell);
  218.        diashell = XtParent(diashell))
  219.     ;
  220.  
  221. /* Locate its primary window's shell (which may be the same) */
  222.  
  223.   for (topshell = diashell;
  224.        !XtIsTopLevelShell(topshell);
  225.        topshell = XtParent(topshell))
  226.     ;
  227.  
  228.   if (XtIsRealized(diashell) && XtIsRealized(topshell)) {
  229.     dpy = XtDisplay(topshell);
  230.     diawindow = XtWindow(diashell);
  231.     topwindow = XtWindow(topshell);
  232.     cxt = XtWidgetToApplicationContext(diashell);
  233.  
  234. /* Wait for the dialog to be mapped.  It's guaranteed to become so unless... */
  235.  
  236.     while (XGetWindowAttributes(dpy, diawindow, &xwa),
  237.            xwa.map_state != IsViewable) {
  238.  
  239. /* ...if the primary is (or becomes) unviewable or unmapped, it's
  240.    probably iconified, and nothing will happen. */
  241.  
  242.       if (XGetWindowAttributes(dpy, topwindow, &xwa),
  243.           xwa.map_state != IsViewable)
  244.         break;
  245.  
  246. /* At this stage, we are guaranteed there will be an event of some kind.
  247.    Beware; we are presumably in a callback, so this can recurse. */
  248.  
  249.       XtAppNextEvent(cxt, &event);
  250.       XtDispatchEvent(&event);
  251.     }
  252.   }
  253.  
  254. /* The next XSync() will get an expose event if the dialog was unmapped. */
  255.  
  256.   XmUpdateDisplay(topshell);
  257. }
  258.  
  259.  
  260. -----------------------------------------------------------------------------
  261. Subject: 106)  How can I control placement of a popup widget?  Each time a
  262. popup is created, it is placed in or over the middle of its parent.  How can I
  263. make it obey the XmNx and XmNy values?
  264.  
  265. Answer: Set the resource XmNdefaultPosition for the popup to False.  Set the
  266. position of the popup by the resource values of XmNx and XmNy.  Do not use
  267. XtMoveWidget, as this is for widget writers only.  Here's a demo program from
  268. Dan Heller:
  269.  
  270. /* Written by Dan Heller.  Copyright 1991, O'Reilly && Associates.
  271.  * This program is freely distributable without licensing fees and
  272.  * is provided without guarantee or warranty expressed or implied.
  273.  * This program is -not- in the public domain.  This program is
  274.  * taken from the Motif Programming Manual, O'Reilly Volume 6.
  275.  */
  276.  
  277. /* map_dlg.c -- Use the XmNmapCallback to automatically position
  278.  * a dialog on the screen.  Each time the dialog is displayed, it
  279.  * is mapped down and to the right by 200 pixels in each direction.
  280.  */
  281. #include <Xm/MessageB.h>
  282. #include <Xm/PushB.h>
  283.  
  284. /* main() --create a pushbutton whose callback pops up a dialog box */
  285. main(argc, argv)
  286. char *argv[];
  287. {
  288.     Widget toplevel, button;
  289.     XtAppContext app;
  290.     void pushed();
  291.  
  292.     toplevel = XtVaAppInitialize(&app, "Demos",
  293.         NULL, 0, &argc, argv, NULL, NULL);
  294.  
  295.     button = XtCreateManagedWidget("button", xmPushButtonWidgetClass,
  296.         toplevel, NULL, 0);
  297.     XtAddCallback(button, XmNactivateCallback, pushed, "Hello World");
  298.  
  299.     XtRealizeWidget(toplevel);
  300.     XtAppMainLoop(app);
  301. }
  302.  
  303. /* callback function for XmNmapCallback.  Position dialog in 200 pixel
  304.  * "steps".  When the edge of the screen is hit, start over.
  305.  */
  306. static void
  307. map_dialog(dialog, client_data, cbs)
  308. Widget dialog;
  309. XtPointer client_data;
  310. XmAnyCallbackStruct *cbs;
  311. {
  312.     static Position x, y;
  313.     Dimension w, h;
  314.  
  315.     XtVaGetValues(dialog, XmNwidth, &w, XmNheight, &h, NULL);
  316.     if ((x + w) >= WidthOfScreen(XtScreen(dialog)))
  317.         x = 0;
  318.     if ((y + h) >= HeightOfScreen(XtScreen(dialog)))
  319.         y = 0;
  320.     XtVaSetValues(dialog, XmNx, x, XmNy, y, NULL);
  321.     x += 200, y += 200;
  322. }
  323.  
  324. /* pushed() --the callback routine for the main app's pushbutton.
  325.  * Create and popup a dialog box that has callback functions for
  326.  * the Ok, Cancel and Help buttons.
  327.  */
  328. void
  329. pushed(w, message)
  330. Widget w;
  331. char *message; /* The client_data parameter passed by XtAddCallback */
  332. {
  333.     Widget dialog;
  334.     Arg arg[3];
  335.     XmString t = XmStringCreateSimple(message);
  336.     extern void response();
  337.  
  338.     XtSetArg(arg[0], XmNautoUnmanage, False);
  339.     XtSetArg(arg[1], XmNmessageString, t);
  340.     XtSetArg(arg[2], XmNdefaultPosition, False);
  341.     dialog = XmCreateMessageDialog(w, "notice", arg, 3);
  342.     XmStringFree(t);
  343.  
  344.     XtAddCallback(dialog, XmNmapCallback, map_dialog, NULL);
  345.  
  346.     XtManageChild(dialog);
  347.     XtPopup(XtParent(dialog), XtGrabNone);
  348. }
  349.  
  350.  
  351. -----------------------------------------------------------------------------
  352. Subject: 107)  TOPIC: LANGUAGE BINDINGS
  353.  
  354. -----------------------------------------------------------------------------
  355. Subject: 108)* Is there a C++ binding for Motif?
  356.  
  357. [Last modified: May 93]
  358.  
  359.  
  360. Answer: WWL is a library which defines C++ classes around X Toolkit Widgets.
  361. It is intended to simplify the task of C++ code writers when using the Toolkit
  362. by providing them with C++ objects, methods, type checking and several utility
  363. functions and classes.
  364.  
  365. WWL has been tested under SunOs4.0.3 on sun3 and sun4, HPUX version 6.5 and
  366. 7.0 and Ultrix 4.0 on DECstation 3100 and 5000. It is expected to work on most
  367. other UNIX systems without too many problems.
  368.  
  369. WWL is distributed as a tar file with all the source, documentation and
  370. example. The file is available using anonymous ftp from
  371.  
  372.         export.lcs.mit.edu (18.30.0.238   contrib/WWL-1.0.tar.Z
  373.         lri.lri.fr (129.175.15.1)      pub/WWL-1.0.tar.Z
  374.  
  375.  
  376. Answer: Rogue Wave Software has a C++ binding for Motif called View.h++.
  377.  
  378. "View.h++ is a complete C++ interface to OSF/Motif.  It doesn't just
  379. encapsulate it, but also includes a set of classes that provide a level of
  380. abstraction above Motif, thus simplifying menu and dialog creation, XmStrings,
  381. XmFontLists, etc.  View.h++ supports a Model- View-Controller architecture,
  382. allowing for an even more object-oriented interface design.  Includes a copy
  383. of Rogue Wave's Tools.h++ (foundation class library)"
  384.  
  385. An object license is $795 "per seat" and a source code license is available
  386. for $2,995 "per seat."  Rogue Wave also offers full support for View.h++.
  387.  
  388. It is currently available for Sun Sparc, IBM RS/6000, HP 9000/700 series, SCO,
  389. Intel SVR4 ESIX.  Please call for Silicon Graphics and DEC Ultrix status.
  390.  
  391. For additional information, please contact:
  392.  
  393. Matt Steinauer
  394. Rogue Wave Software, Inc.
  395. P.O. Box 2328
  396. Corvallis, OR 97339
  397. Phone: (503)754-3010
  398. Fax:   (503)757-6650
  399.  
  400. email:   matts@roguewave.com
  401.  
  402.  
  403. Answer: Builder Xcessory 3.0, an interface builder from ICS, allows the user
  404. to visually build C++ classes from Motif and user-written widgets.  C++ code
  405. is generated in the "Doug Young" fashion.  (Doug actually worked on this
  406. project with ICS.)  C and UIL can also be generated.
  407.  
  408. Integrated Computer Solutions, Inc. (ICS) 201 Broadway, Cambridge, MA  02139
  409. USA info@ics.com   617/621-0060
  410.  
  411.  
  412.  
  413. Answer: From Andreas.Baecker@gmd.de: The GINA++ application framework contains
  414. an encapsulation of the OSF/Motif widg et classes and the Xt functionality
  415. into C++ classes. Its functionality is comparab le to that of the ULowell
  416. binding and the WWL. Additionally, it provides an easy-to -use framework for
  417. modeling new composite and primitive widget classes, plus an application
  418. framework similar to ET++ or MacApp build on top of it. The binding may be
  419. used independently from the framework classes. GINA++ is available through
  420. anonymous ftp from ftp.gmd.de [129.26.8.90] in the directory /gmd/ginaplus.
  421. Documentation about the Motif binding has been published in the X Resource
  422. Journ al, Number 2, 1992, Pages 106-130. The binding compiles with AT&T C++
  423. 2.1 and GNU G+ + 2.1 and has been tested on SunOS 4.1.[12], X11R4 and Motif
  424. 1.1.3.
  425.  
  426. Answer: Motif++ is a library that defines C++ class "wrappers" for the widgets
  427. defined in the X11R5 OSF/Motif-1.2 widget library.  It also supports
  428. X11R4/Motif-1.1 as well.
  429.  
  430. Motif++ is also an application toolkit that provides other tools in
  431. conjunction with the widget wrapper classes.  It has support for the Xbae
  432. widget set, plus other widgets.  It has Imake support, and lots of test files.
  433. Motif++ also has alot of contributed software.
  434.  
  435.  
  436. Motif++ is very similar to other public domain widget libraries such as The
  437. Widget Wrapper Library (WWL) and the C++ Binding for OSF/Motif developed at
  438. the University of Lowell. The two latter libraries are the result of much
  439. larger efforts.
  440.  
  441. Availability:
  442.  
  443. Anonymous ftp at decuac.dec.com (192.5.214.1), directory /pub/X11,
  444. file motif++.28.jul.93.tar.Z
  445.  
  446. For more information, contact Ronald van Loon (rvloon@motif.hacktic.nl).
  447. There is also mailing list for Motif++. Send e-mail to
  448.  
  449. Answer: Xm++ is a user interface framework for the C++ language built upon X11
  450. and the X-Toolkit. It is designed to be a simple and intuitive programming
  451. interface to access the functionality of commonly used widgets.  Xm++ was
  452. initially created for the Motif widget set, now support for the Athena widgets
  453. was added. Applications created with Xm++ run in both environments without
  454. changes, although many nice features are only available when using Motif.
  455.  
  456. Xm++ is available on: export.lcs.mit.edu as: /contrib/Xm++.0.5.tar.Z
  457.  
  458. Answer: The Solbourne OI toolkit (not Motif) also has a C++ binding.
  459.  
  460. Answer: Liant have C++/Views.
  461.  
  462. Answer: Quest have ObjectViews.  Answer: Builder Xcessory 3.0, an interface
  463. builder from ICS, allows the user to visually build C++ classes from Motif and
  464. user-written widgets.  C++ code is generated in the "Doug Young" fashion.
  465. (Doug actually worked on this project with ICS.)  C and UIL can also be
  466. generated.
  467.  
  468. Integrated Computer Solutions, Inc. (ICS) 201 Broadway, Cambridge, MA  02139
  469. USA info@ics.com   617/621-0060
  470.  
  471.  
  472. Answer: Doug Young has written a book "Object Oriented Programming with C++
  473. and Motif", Prentice-Hall ISBN 0-13-630252-1 about using C++ without requiring
  474. one of these toolkits.
  475.  
  476. Answer: Unfortunately, this library (last released in 9/92) has the same name
  477. as the one by Ronald van Loon (rvloon@motif.hacktic.nl).
  478.  
  479. Motif++1.2 is a library that defines C++ class "wrappers" for the widgets
  480. defined in the OSF/Motif-1.1 widget library.  Motif++1.2 is also an
  481. application toolkit that provides other tools in conjunction with the widget
  482. wrapper classes.
  483.     One enhancement of Motif++1.2 beyond its wrapper classes are the addition
  484. of an "application" class which takes care of the low-level tasks including
  485. initializing X, creating and managing one or more top-level shells, and
  486. entering the main event loop.
  487.     Another feature of Motif++1.2 is its integration with The Widget Creation
  488. Library (Wcl).  Motif++1.2 makes it easy to initialize Wcl and create C++
  489. wrappers for desired widgets in the widget tree.
  490.     Availability: anonymous FTP at ftp.arc.umn.edu (137.66.130.11), file
  491. pub/Motif++1.2.tar.Z.  Contact Paul Felix, felix@ahpcrc.umn.edu or
  492. pfelix@vx.cis.umn.edu.
  493.  
  494. submitted by: mvc!biggers@duke.cs.duke.edu ( Mark R. Biggers )
  495.  
  496. -----------------------------------------------------------------------------
  497. Subject: 109)  How can I have a C++ member function in a callback?
  498.  
  499. [Last modified: October 93]
  500. Answer: There are three common user problems with C++ callbacks.  First, make
  501. sure you use the correct function prototype for the function declarations.
  502. Second, the callback function must be declared as a static member of the
  503. class.  Third, when registering it with XtAddCallback(), you must use its full
  504. signature.  For example: (Ken Lee klee@synoptics.com)
  505.  
  506.     class MyClass {
  507.         ...
  508.         void createWidgets();
  509.         static void myButtonCB(Widget, XtPointer, XtPointer);
  510.         ...
  511.     };
  512.     void MyClass::createWidgets() {
  513.         ...
  514.         w = XtCreatePushButton(...);
  515.         XtAddCallback(w, XmNactivateCallback, &MyClass::myButtonCB,
  516.             (XtPointer) this);
  517.         ...
  518.     }
  519.     void myButtonCB(Widget w, XtPointer clientData, XtPointer callData) {
  520.         MyClass *myclass = (MyClass *) clientData;
  521.         ...
  522.     }
  523.  
  524. Note that the "this" pointer is used as the client data.  This technique is
  525. popular, but not required.
  526.  
  527.  
  528. Motif++ has a nice tutorial summarising mechanisms (this is available
  529. separately by email from Ronald van Loon (rvloon@motif.hacktic.nl)). Doug
  530. Young's book deals extensively with one of these. The problem is that you
  531. don't get the object when you just use the function as a callback.  You need
  532. to pass the object as a pointer through as the client_data.  (use "this" as
  533. the client_data.) Then you can retrieve the object's address, and dereference
  534. from there. For example (Leo O'Donnell, Email: leo@avs.com),
  535.  
  536.     class MyButton {
  537.       public:
  538.                 MyButton (Widget parent, const char *name) {
  539.                     _button = XtVaCreateManagedWidget (
  540.                         name, xmPushButtonWidgetClass, parent, NULL, 0);
  541.                     XtAddCallback (
  542.                         _button,
  543.                         XmNactivateCallback,
  544.                         &MyButton::activateCB,
  545.                         (XtPointer) this);
  546.                 }
  547.                 ~MyButton () { XtDestroyWidget (_button); }
  548.       private:
  549.         Widget  _button;
  550.         static  void activateCB (Widget, XtPointer, XtPointer);
  551.     };
  552.  
  553.     void MyButton::activateCB (Widget, XtPointer thisBtn, XtPointer)
  554.     {
  555.         MyButton *btn = (MyButton *) thisBtn;
  556.  
  557.         // OK you've got the button instance now. Do some stuff with it!
  558.     }
  559.  
  560.  
  561.  
  562. -----------------------------------------------------------------------------
  563. Subject: 110)  Is there a Common Lisp binding for Motif?
  564.  
  565. [Last modified: November 92]
  566.  
  567. Answer: Try CLM. This includes a toolkit demon (in C) that takes a widget
  568. description (with callbacks), and forks a new process for each Motif
  569. application (which can be just a single menu, or whatever).  Lisp can then
  570. continue running, with a separate lightweight lisp process handling the
  571. connection & callbacks.  In North America & net environs, CLM-2.0beta is
  572. available from export.lcs.mit.edu.
  573.  
  574. There is also CLIM, the Common Lisp Interface Manager. It provides access to
  575. motif and other toolkits and window systems.  Here is some blurb: "Version 2.0
  576. of the Common Lisp Interface Manager (CLIM) provides access to Motif. CLIM is
  577. the emerging standard for GUI development in Common Lisp.  It offers a set of
  578. high-level facilities that enable rapid construction of user interfaces.
  579. Applications written using CLIM are portable across a variety of window
  580. systems and toolkits.  For example, on the X window System, both Motif
  581. (OSF/Motif) and Openlook (OLIT) are supported.  CLIM accesses the toolkit
  582. directly rather than emulating the look and feel."
  583.  
  584. CLIM is available from a variety of Common Lisp vendors including Symbolics
  585. and Franz Inc. (info@franz.com).
  586.  
  587.  
  588. -----------------------------------------------------------------------------
  589. Subject: 111)* Is there an Ada binding for Motif?
  590.  
  591. [Last modified: Apr 94 ]
  592.  
  593. Answer:
  594.  
  595. Answer:  Integrated Computer Solutions, Inc. (ICS) supplies Ada bindings to
  596. Motif for a number of platforms and Ada compilers.  ICS also provides Builder
  597. Xcessory, a Motif interface builder, which outputs Ada code usable with the
  598. Ada bindings.  The product family is known collectively as the Ada Xcessories.
  599.  
  600. Integrated Computer Solutions, Inc. (ICS) 201 Broadway, Cambridge, MA  02139
  601. USA info@ics.com   617/621-0060
  602.  
  603.  
  604.  
  605. Information on Ada bindings to Motif and other services (such as SQL and
  606. POSIX) can be found in a document maintained by the Ada Information
  607. Clearinghouse.  The report can be found at
  608.  
  609.         host:   ajpo.sei.cmu.edu
  610.         loc:    /public/ada-info/bindings.hlp.*
  611.         access: anonymous ftp
  612.  
  613. The suffix to the file (indicated above with an asterix) is the date of the
  614. latest update to the document.  For example, the full name of the report
  615. updated on 14 June 1993 would be
  616.  
  617.         /public/ada-info/bindings.hlp.14Jun93.
  618.  
  619. The file is ASCII.
  620.  
  621. ------ Included File
  622.  
  623.  
  624. [...Excerpted from the AdaIC report bindings.hlp.14Jun93...]
  625. [...Updates can be found on ajpo.sei.cmu.edu, in the    ...]
  626. [...file /public/ada-info/bindings.hlp.*  The suffix    ...]
  627. [...is always the date of the lastest version to the    ...]
  628. [...report.                                             ...]
  629.  
  630.                                      SECTION 12
  631.                                   X-Window System:
  632.                                OSF Motif and Open Look
  633.                                Available Ada Bindings
  634.  
  635.  
  636. 12.1  Description and Standardization Efforts
  637.  
  638. The X-Window System is a network-transparent window system.  It supports one
  639. or more screens containing overlapping windows or subwindows.  X display
  640. servers distribute user input to and accept output requests from various
  641. client programs located either on the same machine or elsewhere in the
  642. network.
  643.  
  644.             OSF Motif (Open Software Foundation/Motif) is a graphical user
  645.             interface from OSF that provides a Presentation Manager look and
  646.             feel for applications running on any system with X Window version
  647.             11.  It conforms to POSIX, ANSI C and X/Open's XPG3 standards.
  648.  
  649. 12.2  Resources Available from Software Reuse Libraries/Repositories
  650.  
  651.  
  652. ASSET                                                      (Updated:  November
  653. 1 992)
  654.  
  655. The following information was taken in its entirety from the ASSET Library
  656. Repository Catalog, October 9, 1992.  For more information on ASSET, see
  657. Appendix C.
  658.  
  659.  
  660. INTERFACE TO THE X WINDOW SYSTEM
  661.  
  662. VERSION_NUMBER    : 1.1
  663. DEVELOPED_BY      : SAIC
  664. RELEASE_DATE      : 29-SEP-88
  665. UNIQUE_IDENTIFIER : ASSET_A_240
  666. ALTERNATE_NAME    : SAICX2
  667. ASSET_TYPE        : SOFTWARE CODE
  668. FUNCTIONS         : INTERFACE, BIND
  669. OBJECTS           : ADA, X WINDOWS
  670. KEYWORDS          : STANDARDS, BINDINGS
  671. COLLECTION        : STARS FOUNDATIONS
  672. DISTRIBUTION      : UNLIMITED
  673.  
  674. DESCRIPTION       :
  675.  
  676. Interface to the X Window System
  677.       An expression of the various concepts in Ada that provides a full,
  678. working Ada specification of the X Window system.
  679.      Approved for public release; distribution is unlimited.
  680.  
  681. 12.3  Products Available from Vendors
  682.  
  683.  
  684. Advanced Technology Center                                 (Updated:  November
  685. 1 992)
  686.  
  687. The Advanced Technology Center (ATC) has an Ada binding to OSF Motif for their
  688. AXI~ product.  AXI is currently available for most UNIX-based platforms, and
  689. is supported by Verdix, Meridian, and TeleSoft compilers.
  690.  
  691. AXI is an Ada-to-X-Window System interface that provides the Ada programmer
  692. access to the 500+ functions, libraries, and procedures contained in the X
  693. library (Xlib), the X Toolkit (Xt), the X Extensible Library, the X
  694. Miscellaneous Utilities, the Motif widget set and the Motif Resource Manager.
  695.  
  696. ATC is planning to develop an Ada binding to Open Look for AXI.
  697.  
  698. For more information, contact:Larry Paulson, Advanced Technology Center, 22982
  699.                         Mill Creek Drive, Laguna Hills, CA  92653, USA; Phone:
  700.                         714-583-9119
  701.  
  702.  
  703. Alsys, Inc.                                                     (Updated:  May
  704. 1 992)
  705.  
  706. The Alsys Ada Software Development Environment (Alsys's validated Ada compiler
  707. #901221W1.11103) for 386 UNIX is a production-quality Ada environment capable
  708. of handling very large Ada applications (over 500,000 lines of code).  The
  709. product includes the Compiler; Multi-Library Environment, which provides a
  710. powerful and flexible way to manage Ada development effort and share program
  711. units; Binder, which supports unused subprograms elimination; High-and Low-
  712. Level Optimizers for improving code quality and performance; and Run-Time
  713. Executive for efficient support for executing Ada programs.  Also included is
  714. the Developer's Toolset including:  Ada Probe, a symbolic source level
  715. debugger and program viewer; AdaXref, a cross-reference generator; AdaMake, a
  716. recompilation aid; AdaReformat, a source reformatter.
  717.  
  718. Alsys currently has Ada bindings to POSIX, X-Windows (OSF Motif), and the
  719. Generic Package of Elementary Functions for the Alsys Ada Software Development
  720. Environment, running on 386 UNIX 386/486-based machines supported as both host
  721. and target and running 386/ix or SCO UNIX.  They are also planning a binding
  722. to SQL for  386/486 machines.
  723.  
  724. Host/Target:386/486 PC under IX UNIX, 386/486 PC under SCO UNIX
  725.  
  726. The Alsys Ada Software Development Environment for the IBM RS/6000 is a
  727. production-quality Ada environment capable of handling very large Ada
  728. applications.  Hosted on and targeted to the IBM RS/6000 workstation under
  729. IBM's AIX operating system, the product includes the Compiler; Multi-Library
  730. Environment, which provides a  powerful and flexible way to manage Ada
  731. development efforts and share program units; Binder; Run-Time Executive; and
  732. both a High and Low-Level Optimizer for improving code quality and
  733. performance.  Also included is the Alsys Ada Toolset including Ada Probe,
  734. symbolic source level debugger and program viewer; AdaXref, cross-reference
  735. generator; AdaMake, recompilation aid; and AdaReformat, source reformatter.
  736.  
  737. Alsys has bindings currently available to the Generic Package of Elementary
  738. Functions and to X-Windows (OSF Motif) for the Alsys Ada Development
  739. Environment for the IBM RS/6000 running on any RISC System/6000 machine as
  740. both host and target and running IBM's AIX operating system (Alsys's validated
  741. Ada compiler #910809W1.11195).   Alsys also plans to develop a POSIX binding
  742. for the RS/6000.
  743.  
  744. Host/Target:RISC System/6000 under AIX
  745.  
  746. The Alsys Ada Software Development Environment for SPARC Workstations is a
  747. production-quality Ada environment capable of handling very large Ada
  748. applications.  Hosted on any SPARC-based workstation under SunOS or SunView,
  749. the product helps you realize the full potential of Ada on SPARC machines. The
  750. product includes the Compiler (with High- and Low-Level Optimizers); Binder,
  751. which supports unused subprogram elimination; Multi-Library system (Family,
  752. Library, and Unit Managers) which provides a powerful and flexible way to
  753. manage Ada development efforts and share program units;  AdaExec real-time
  754. executive, for complete and efficient support for executing Ada programs; and
  755. ISO-standard mathematical library.  Also included is the Alsys Ada Toolset
  756. including AdaProbe, symbolic source level debugger and program viewer;
  757. AdaXref, cross-reference  generator; AdaMake, recompilation aid; and
  758. AdaReformat, source reformatter.
  759.  
  760. Bindings to the Generic Package of Elementary Functions and to OSF/Motif are
  761. currently available for the Alsys Ada Software Development Environment running
  762. on any SPARC-based Workstation as both host and target and running SunOS or
  763. SunView.
  764.  
  765. Host/Target:SPARC under SUNOS
  766.  
  767. For more information, contact:Scott Garren, Alsys, Inc., 67 South Bedford
  768.                         Street, Burlington, MA  01803-5152, USA;  Phone:
  769.                         (617) 270-0030
  770.  
  771.  
  772. Digital Equipment Corporation                              (Updated:  November
  773. 1 992)
  774.  
  775. Digital Equipment Corporation has bindings available for GKS, PHIGS, SQL, and
  776. OSF Motif for VAX Ada/VMS.  The Ada bindings are provided either as part of a
  777. compiler product or the services/facilities that are provided by Digital and
  778. its suppliers.
  779.  
  780. Host/Target:DEC VAX under VMS
  781.  
  782. For more information, contact:Mary Anne Cacciola, Digital Equipment
  783.                         Corporation, 110 Spit Brook Road, Nashua, NH  03062,
  784.                         USA; Phone:  (603) 881-1028
  785.  
  786.  
  787. IBM                                                        (Updated:  November
  788. 1 992)
  789.  
  790. IBM's AIX Ada/6000 product provides a binding to GPEF and IBM AIXWindows (X-
  791. Windows ... not Motif).  It runs on all models of the IBM RISC System/6000
  792. under the IBM AIX Version 3.2 operating system. See also entries for Systems
  793. Engineering Research Corporation (SERC) and Advanced Technology Center (ATC)
  794. for Motif, GKS or PHIGS bindings for use with IBM AIX Ada/6000 products.
  795.  
  796.  
  797. The AIX Ada/6000 licensed programs (5706-291 and 5706-294) consist of an
  798. optimizing compiler, a run-time environment, a symbolic debugger, an Ada
  799. "makefile" generator for use in automating and minimizing recompilation, Ada
  800. library management tools and Ada language bindings to some key AIX subsystems.
  801. With the exception of some system-specific aspects of the language, the Ada
  802. language for the AIX operating system is source compatible with the Ada
  803. language supported by IBM licensed programs in VM/CMS and MVS.
  804.  
  805. Host/Target:IBM RISC System/6000 under the IBM AIX Version 3.2 operating
  806.             system
  807.  
  808. This product conforms to the following standards:  ANSI/MIL-STD-1815A - Ada at
  809. current level (1.11) of the ACVC test suite.
  810.  
  811. For more information, contact:Barry Lee, IBM Corporation, 844 Don Mills Road,
  812.                         North York, Ontario, Canada  M3C 1V7; Phone:  (416)
  813.                         448-3174; Fax: (416) 448-4810
  814.  
  815. Objective Interface Systems, Inc.                          (Updated:  November
  816. 1 992)
  817.  
  818. Objective Interface Systems, Inc., has an Ada binding to X-windows (OSF Motif)
  819. for its Screen Machine~ product.  The Screen Machine binding to Motif includes
  820. a WYSIWYG drawing tool and an Ada code generator.
  821.  
  822. Host/Target:
  823.  
  824.       Sun SPARC/SunOS         Rational R1000/Delta    HP 9000/7XX; 8X7
  825.       IBM RISC System/6000/AIXPC 386/486/ISC UNIX     HFSI WIS Workstation
  826.       PC 286/386/486/MS-DOS   PC 386/486/SCO UNIX     DEC Ultrix; DEC VMS
  827.  
  828. For more information, contact:Phil Carrasco, Object Interface Systems, Inc.
  829.                         1895 Preston White Drive, Suite 250, Reston, VA
  830.                         22091-5448, USA; Phone: (703) 264-1900; Fax:
  831.                         703-264-1721; email info@ois.com (internet)
  832.  
  833.  
  834. SL Corporation                                              (Updated: November
  835. 1 992)
  836.  
  837. SL Corporation's SL-GMS toolkit includes Ada bindings to GPEF, GPPF, POSIX,
  838. SQL, TCP/IP, OSF/Motif, and Open Look.
  839.  
  840. SL-GMS is a toolkit for developing dynamic graphics screens for real-time or
  841. highly interactive applications.  Non-programmers can design application
  842. screens in a standard drawing-tool mode, connect them to real-time data
  843. sources and animate screen objects to visualize changing data values.  SL-GMS
  844. allows the design of custom "GISMOs" to input values or control the
  845. application and supports MOTIF, OPEN LOOK and other X toolkit widgets.
  846.  
  847. SL-GMS is used extensively to provide real-time graphics for applications in
  848. the fields of manufacturing, process control, network management, avionics and
  849. financial tracking.
  850.  
  851. Host/Target:Validated Verdix and DEC compilers support SL-GMS for the
  852.             following machines as both host and target:
  853.  
  854.  
  855.       DEC-DECstation/ULTRIX 4.0DEC-VAXstation/ULTRIX 4.0
  856.       DEC-VAXstation/VMS 5.4  DEC-VAXstation/VMS 5.5
  857.  
  858.       IBM-RS6000/AIX
  859.  
  860.       HP-9000/300/UNIX        HP-9000/400/UNIX
  861.       HP-9000/800/UNIX        HP-9000/700/UNIX
  862.  
  863.       PC-386/IX UNIX          PC-386/SCO UNIX
  864.       PC-386/Lynx             PC-386/0S2
  865.       PC-386/System 5.4
  866.  
  867.       SGI-4D/IRIX 3.3
  868.  
  869.       Sun-3/SunOS 4.1         SunSPARC/SunOS 4.1
  870.  
  871.       88 Open/BCS Compliant
  872.  
  873. For more information, contact: Mike Meagher, SL Corporation, 240 Tamal Vista
  874.                         Boulevard, Corte Madera, CA  94926, USA Phone: (415)
  875.                         927-1724; Fax: (415) 927-2931
  876.  
  877.  
  878. Sunrise Software International                                  (Updated:  May
  879. 1 992)
  880.  
  881. Sunrise Software International's product, ezx, is a rapid application
  882. development tool that automates the creation of graphical user interfaces for
  883. OSF/MOTIF and generates C, UIL, or Ada.  ezx provides WYSIWYG screen layout;
  884. color, font and pixmap editors; presentation tools and dialog management.  A
  885. prototype can be developed in hours and using a script language similar to
  886. Hypertalk, demonstrated to end-users before the first line of code is written.
  887. Then portable C, UIL or Ada can be generated automatically.  Ada bindings are
  888. provided.  The total code required to develop a GUI is reduced by
  889. approximately 75%.   The appearance and behavior of the GUI is defined in an X
  890. resource file which the application loads at run time.  This provides explicit
  891. separation between the GUI and the computational core of the application. Thus
  892. the GUI can be revised without recompiling (and retesting) the application.
  893.  
  894. ezx provides cost savings throughout the software development cycle, from
  895. requirements analysis through design, code, test and maintenance.
  896.  
  897.  
  898. Host/Target:DEC RISC under ULTRIX, DEC VAX under VMS, IBM 386 under UNIX, IBM
  899.             RS 6000 under AIX, SGI under , SUN SPARC under UNIX
  900.  
  901. For more information, contact:Frederick Sells, Sunrise Software International,
  902.                         170 Enterprise Center, Middletown, RI  02840, USA;
  903.                         Phone:  401-847-7868
  904.  
  905. Systems Engineering Research Corporation (SERC)            (Updated:  November
  906. 1 992)
  907.  
  908. SERC's Ada/MOTIF is a complete binding to X Window and OSF/Motif for the Ada
  909. programming language that was based in part upon the SAIC/Unisys (STARS)
  910. public domain bindings.  That work was leveraged as a starting point for this
  911. development; many of the bug fixes and additional capabilities beyond the
  912. public domain releases in Ada/MOTIF have been incorporated.  Most noteworthy
  913. are the capabilities included in Ada/Motif for Ada tasking, callback
  914. registration, memory leak detection/prevention and capabilities for developing
  915. customized widgets.  Paramax/STARS considers Ada/Motif to be the commercial
  916. version of their STARS bindings, according to SERC.
  917.  
  918. Ada/MOTIF is supported by the ALSYS, VERDIX, SUNAda, IBM Ada, and SGI Ada
  919. compilers.
  920.  
  921.  
  922. Host/Target:SUN 4, HP 300/400, HP 700, IBM RS 6000, SGI, 386
  923.             SUN OS 4.1.1, SOLARIS 2.0 (coming), HPUX 8.0, SGI 3.2 & 4.0, IBM
  924.             ATX 3.2, SCO 3.2
  925.  
  926. For more information, contact:Theo Kusiolek or Scott Cleveland, Systems
  927.                         Engineering Research Corporation (SERC), 2555
  928.                         Charleston Road, Mountain View, CA  94043, USA; Phone:
  929.                         800-ADA-SERC or 415/962-9092; Fax:  415/962-0330;
  930.                         E-mail:  Well!sercmail@apple.com.
  931.  
  932.  
  933. TeleSoft                                                   (Updated:  November
  934. 1 992)
  935.  
  936. TeleSoft's TeleUSE/Ada automates the creation of OSF/Motif graphical user
  937. interfaces for Ada applications.  It includes a special version of the TeleUse
  938. User Interface Management System -- which generates Ada source code -- and Ada
  939. bindings to the TeleUSE run-time routines.
  940.  
  941. TeleUse/Ada tools allow a GUI to be prototyped and designed using a WYSIWYG
  942. editor and a PDL, and also includes tools for debugging, generating production
  943. code and maintaining the GUI.  TeleUse/Ada can save the developer up to 90
  944. percent of the time required to hand code X Window System GUIs.
  945.  
  946. Host/Target:SPARC under UNIX, Sun-4 under UNIX
  947.  
  948.  
  949. TeleSoft's TeleWindows is a set of Ada bindings to the X Window System and
  950. OSF/Motif.  This includes Xlib, XT, X extensions Library, XT+, X miscellaneous
  951. utilities, Motif widget set, XM, MWM, Motif resource manager.  It supports X-
  952. 11 R4 and is not based on the public domain version.  It closely follows the C
  953. Xlib syntax and allows Ada applications to co-exist with C applications.
  954.  
  955. Host/Target:IBM System/370 under VM/CMS
  956.  
  957. For more information, contact:Karen Johnson, TeleSoft, 5959 Cornerstone Court
  958.                         West, San Diego, CA  92121-9891, USA; Phone:  (619)
  959.                         457-2700
  960.  
  961. Verdix                                                          (Updated:  May
  962. 1 992)
  963.  
  964. The Verdix Ada Development System (VADS), is a complete Ada Compiler System
  965. offering a fully validated Ada compiler with chapter 13 support.  Verdix
  966. supplies VADSself and VADScross.   VADSself provides a complete toolset for
  967. self-targeted applications.  It easily interfaces to databases, windowing
  968. systems and program management tools.  VADScross provides real-time support
  969. for host-to-target system development.  VADScross produces small and fast
  970. object code.  VADS is hosted on the largest number of platforms and targets
  971. the greatest number of microprocessors.
  972.  
  973. Host/Target:88000 BCS under UNIX, DEC VAX under VMS / ULTRIX / UNIX,
  974.             DECStation (RISC) under UNIX, DECSystem (RISC) under UNIX, HP 9000
  975.             Series 300 under HP-UX  (UNIX), IBM PS/2 under AIX  (UNIX), IBM
  976.             RISC System/6000 under AIX, SCO Systems V/386 (ABI) under UNIX,
  977.             Sun SPARC systems under UNIX, Sun-3 systems under UNIX
  978.  
  979. Verdix AXI provides an Ada binding to the full Motif, Xt, and Xlib libraries.
  980. The product works with user-supplied Motif 1.1 and X11R4 libraries regardless
  981. of source.
  982.  
  983. Host/Target:DEC RISC under Ultrix, IBM RS6000 under AIX, MIPS under MIPSos,
  984.             Sun-4 under SunOS, Sys V386 under ISC UNIX, Sys V386 under SCO
  985.             UNIX
  986.  
  987. For more information, contact:Tim Ruhe, Verdix Corporation, 205 Van Buren,
  988.                         Herndon, VA  22070, USA; Phone:  (703) 318-5800
  989.  
  990. Answer: Integrated Computer Solutions, Inc. (ICS) supplies Ada bindings to
  991. Motif for a number of platforms and Ada compilers.  ICS also provides Builder
  992. Xcessory, a Motif interface builder, which outputs Ada code usable with the
  993. Ada bindings.  The product family is known collectively as the Ada Xcessories.
  994.  
  995. Integrated Computer Solutions, Inc. (ICS) 201 Broadway, Cambridge, MA  02139
  996. USA info@ics.com   617/621-0060
  997.  
  998.  
  999.  
  1000. -----------------------------------------------------------------------------
  1001. Subject: 112)  Is there a Poplog binding for Motif?
  1002.  
  1003. [Last modified: May]
  1004.  
  1005. Answer:
  1006.  A integrated programming environment consisting of the programming
  1007.     languages Pop-11, Prolog, Standard ML, and Lisp which are compiled
  1008.     to machine code via a common virtual machine. Pop-11 provides a rich
  1009.     interface to the X Toolkit which can be accessed from all other
  1010.     Poplog languages. The OLIT, Motif, and Athena widget sets are
  1011.     supported, in addition to the custom Poplog (Xpw) widget set. XVed
  1012.     provides a sophisticated, customisable multi-window editor. Under
  1013.     OPEN LOOK and Motif the Poplog User Interface (PUI) provides a
  1014.     graphical interface to the Poplog system. High-level Pop-11
  1015.     libraries allow graph drawing, turtle graphics, and the simple
  1016.     creation of basic button/menu based interfaces.
  1017.  
  1018. Contact:
  1019.  
  1020.     UK EDUCATION SITES:
  1021.         Poplog Sales. School of Cognitive and Computing Sciences.
  1022.         Brighton. BN1 9QN. England.
  1023.         Phone: +44 (0)273 678188
  1024.         Email: popsales@cogs.susx.ac.uk
  1025.     USA AND CANADIAN EDUCATION SITES:
  1026.         Computable Functions Inc. 35 South Orchard Drive. Amherst.
  1027.         MA 01002. USA.
  1028.         Phone: (413) 253-7637
  1029.     ALL OTHER SALES:
  1030.         Integral Solutions Ltd. Unit 3, Campbell Court. Bramley.
  1031.         Basingstoke. Hampshire. RG26 5EG. England.
  1032.         Phone:  +44 (0)256 882028
  1033.         Fax:    +44 (0)256 882182
  1034.         Email:  isl@integ.uucp
  1035.  
  1036.  
  1037.  
  1038. -----------------------------------------------------------------------------
  1039. Subject: 113)  TOPIC: SPECIFIC PLATFORMS
  1040.  
  1041. -----------------------------------------------------------------------------
  1042. Subject: 114)  Is it easy to build Motif for a Sun?
  1043.  
  1044. Answer: See next question for Solaris 2.  No pattern has emerged to problems
  1045. about compiling Motif on the Sun (although people seem to have a lot of
  1046. different minor problems), and many reports are that it is straightforward.
  1047. Read the Motif install instructions (which often have specific reference to
  1048. Sun installation), light the blue touch paper and just standback. [My
  1049. experience was that I had to add -D_NO_PROTO for 1.1 on a Sparc OS 4.1, and
  1050. that was all.  Others have added STRINGS_ALIGNED and NO_REGEXP].
  1051.  
  1052.  
  1053. -----------------------------------------------------------------------------
  1054. Subject: 115)  How do I build Motif 1.2.2 on Solaris 2.1 with Sun C?
  1055.  
  1056. [Last modified: May 93]
  1057.  
  1058. Prepared by Ric Steinberger.  ric@updike.sri.com  4/09/93
  1059.  
  1060. What follows is a description of the steps I used to build Motif 1.2.2 on a
  1061. SUN IPX running Solaris 2.1.  Sun's C compiler (2.0.1) was used.  Many thanks
  1062. go to Kaleb Keithley (kaleb@devvax.jpl.nasa.gov) for several useful
  1063. suggestions.  Other people, including OSF staff, especially David Brooks
  1064. (dbrooks@osf.org), helped as well.  My thanks to you all.
  1065.  
  1066. 1. Build X11R5 from the mit distribution.  You need to retrieve the sources
  1067.    from export.lcs.mit.edu (in pub/R5) and patches 1 - 22 (or 23) (in
  1068.    pub/R5/fixes).  There are several other sites that contain the X11R5
  1069.    sources.  After installing patch 19, apply PEXlib.tar.Z, also available
  1070.    from export.lcs.mit.edu in pub/R5/fixes.  You can apply also
  1071.    R5.Xsun.multi-screen and R5.SunOS5.patch.  There are .README files
  1072.    that explain how to patch.  Be SURE to read
  1073.    R5.SunOS5.patch.README for details on how to BUILD X11.  You probably
  1074.    want to use the ProjectRoot feature in the site.def file in the
  1075.    mit/config directory.  You will NEED to edit that file to do that.
  1076.  
  1077. 2. Obtain the Motif 1.2.2 distribution from OSF (617-621-7300).  You may
  1078.    need to first install the 1.2 tape, then the 1.2.1 and finally the
  1079.    1.2.2 tape.  You might want to do a "chmod -R u+w ." after unloading
  1080.    each tape.
  1081.  
  1082. 3. In the config directory, there are several changes.  Some of the changes
  1083.    are based on R5.SunOS5.patch files.  A complete set of config files
  1084.    relevant to Solaris have been placed in the anon-ftp account of
  1085.    updike.sri.com in pub/motif/solaris21-motif122-config.tar.Z.  They are
  1086.    also available from OSF on their mail response server (available to
  1087.    support contract holders) and they will send them directly to full
  1088.    support contract holders.  Decompress and untar this file in your Motif
  1089.    config subdirectory.  Copy site.def.sample to site.def, then edit
  1090.    site.def.  You will probably want to uncomment the ProjectRoot section
  1091.    and use the same value used in your X11R5 build.  Also, you will probably
  1092.    want to use /usr/ucb/install in you installed the UCB compatibility
  1093.    suite.  Otherwise you might want to use the install supplied at the end
  1094.    of this memo.  [I used the UCB version and can't swear that this works.
  1095.    Bit it should.  Put it someplace like /usr/local/bin and chmod +x it.]
  1096.  
  1097.    There are two patches to consider.  One fixes a cursor problem
  1098.    in ./lib/Xm/TextF.c.  The other removes a Berkeleyism.  These
  1099.    patches should probably be consider unofficial at present.
  1100.    Failure to deal with the Berkeleyism (bzero) means you will need to
  1101.    link with -lucb -lelf.  This will probably work, but why bother?
  1102.    Furthermore, if you move the Motif binaries to a machine without
  1103.    the ucb compatability suite, you won't have the sharable libs you need.
  1104.  
  1105. [The actual patches have been censored because they contain OSF source code]
  1106.  
  1107.    Patch 1: In TextF.c there are several places _XmTextFieldDrawInsertionPoint
  1108. is called. These should be moved two or three lines further down *after* the
  1109. "if (!XtIsRealized(tf)) return True;" statement.
  1110.  
  1111.  
  1112.    patch 2: The call to bzero in lib/Xm/Visual.c should be replaced by the
  1113. equivalent call to memset
  1114.  
  1115.  
  1116.     Both these patches can be applied in the ./lib/Xm directory.
  1117.     If you don't have the patch program (how did you build X11?),
  1118.     you can get it in the vendor/cygnus directory of ftp.uu.net,
  1119.     or you can build it from source.  Be sure to get the latest
  1120.     version (2.0.12.u8).
  1121.  
  1122. 4) Use the README-1.2.1 file as a guideline for building motif.  I followed
  1123.    directions in the section called, "Using X11R5 Installed Libraries
  1124.    and Header Files."  If you make a mistake after your first build
  1125.    attempt, copy Makefile.ini to Makefile before retrying.  You may
  1126.    need to do this in the config subdirectory too, depending on what
  1127.    went wrong.
  1128.  
  1129. 5) After make Makefiles, do make includes, make depend, then make (or
  1130.    as OSF recommends, make -k).  This gets as far as motifshell in the
  1131.    demos, which fails to build because O_RDONLY and L_XTND are
  1132.    not defined.  O_RDONLY is in fcntl.h (actually <sys/fcntl.h>, but
  1133.    fcntl.h includes this.)  L_XTND can be replaced by SEEK_END.
  1134.    SEEK_END is in stdio.h.  These two fixes will allow motifshell to build.
  1135.    Note: many MANY compiler warning messages will be generated during
  1136.    the build process.
  1137.  
  1138. 6) You can go to the demos/xmsamplers directory and do a make there.
  1139.    Other demos may build, or not depending on whatever. . . .
  1140.  
  1141. 7) make install will do the install.  [It will fail at motifshell
  1142.    if you don't fix it, as mentioned above.]  You can do a make install
  1143.    in demos/xmsamplers if you want these.
  1144.  
  1145. 8) If running on a SUN (as opposed to an X term), you will (probably) need
  1146.    to start openwin with something like:
  1147.  
  1148.         openwin -server /usr/X11R5/bin/Xsun
  1149.  
  1150.  
  1151.    [You might want to use an alias for this.]
  1152.    This fixes an annoying problem: The mouse keys stop working after you
  1153.    click on an icon to get the icon menu (on SUNs only, not X terms).
  1154.    The ALT keys still work, if you get stuck.  I don't know whether this
  1155.    is a bug in SUN's server or whether it is Motif related.
  1156.  
  1157.    Here is a copy of my .xinitrc:  It's not elegant.  Sun's default
  1158.    openwin startup file is in: /usr/openwin/lib/Xinitrc.  You can
  1159.    copy this to ~/.xinitrc and customize as desired.  Obviously, the
  1160.    default behavior is to start the OpenLook environment (boo!).
  1161.  
  1162.  
  1163. #!/bin/sh
  1164. #
  1165. # .xinitrc - OpenWindows startup script.
  1166. #
  1167. if [ -f $HOME/.Xdefaults ]; then
  1168.     xrdb $HOME/.Xdefaults              # Load Users X11 resource database
  1169. fi
  1170. if [ -f $HOME/.Xdefaults.sun ]; then
  1171.     xrdb -merge $HOME/.Xdefaults.sun
  1172. fi
  1173. DISPLAY=`hostname`:0.0
  1174. export DISPLAY
  1175. xhost + > /dev/null
  1176. #xterm -sb -sl 512 -T `hostname` -ls -n `hostname` &
  1177. xterm -sb -sl 512 -T `hostname` -n `hostname` &
  1178. mwm &
  1179. xclock -geometry +1010+0 &
  1180. xload -geometry +710+5 -fg red &
  1181. xsetroot -solid salmon &
  1182. xterm -sb -sl 100 -T CONSOLE_DO_NOT_LOGOUT -C -n console -iconic
  1183. #wait
  1184.  
  1185. Here's .Xdefaults.sun, which gives me a more readable font for use with
  1186. motif on Sun monitors:
  1187.  
  1188. !Some additional .Xdefaults values specifically for SUN
  1189. !
  1190. ! After loading .Xdefaults, xrdb -merge .Xdefaults.sun
  1191. !
  1192. Mwm*fontList:           8x16
  1193. !Mwm*fontList:          vtbold
  1194. !Change as desired.
  1195.  
  1196.  
  1197.      You will probably want to maintain LD_LIBRARY_PATH to something like:
  1198. /opt/SUNWspro/lib:/usr/ccs/lib:/usr/ucblib:/usr/X11R5/lib:/usr/lib:
  1199. /usr/openwin/lib.  If you use emacs, you will need to leave /usr/openwin/lib
  1200. there.  [This is because you probably, like me, used the distributed version
  1201. of s-sol2.h, which explicitly refers to windowing libraries as being in the
  1202. /usr/openwin locations.  Yes, I know that emacs/Solaris ought to allow
  1203. LibXt.so.N.M to be "picked up" from elsewhere, like /usr/X11R5/lib, but the
  1204. one emacs links with is LibXt.so.4.something, and the mit one is
  1205. LibXt.so.5.something.  So it seems to want the .4 one.  Any comments?  I'd
  1206. prefer not to rebuild emacs based on the X11R5 libs because I occassionally
  1207. need to move the emacs binaries to machines without the mit files.]
  1208.  
  1209. -----------------------------------------------------------------------------
  1210. Subject: 116)  What compile errors/warnings might I get in both Sun 3 and Sun
  1211. 4?
  1212.  
  1213. Answer:
  1214.  
  1215.  
  1216. make: Warning: Too many rules defined for target
  1217. make: Warning: Too many rules defined for target
  1218. "callbacks.c", line 1530: warning: illegal combination of pointer
  1219. and integer, op =
  1220. "callbacks.c", line 1531: warning: illegal combination of pointer
  1221. and integer, op =
  1222. "callbacks.c", line 1532: warning: illegal combination of pointer
  1223. and integer, op =
  1224. "utils.c", line 73: warning: illegal combination of pointer and integer, op =
  1225. "utils.c", line 74: warning: illegal combination of pointer and integer, op =
  1226. "utils.c", line 122: warning: illegal combination of pointer and integer, op =
  1227. "utils.c", line 123: warning: illegal combination of pointer and integer, op =
  1228. "utils.c", line 191: warning: illegal combination of pointer and integer, op =
  1229. "utils.c", line 194: warning: illegal combination of pointer and integer, op =
  1230. "utils.c", line 195: warning: illegal combination of pointer and integer, op =
  1231. "utils.c", line 196: warning: illegal combination of pointer and integer, op =
  1232. "utils.c", line 316: warning: illegal combination of pointer and integer, op =
  1233. "utils.c", line 334: warning: illegal combination of pointer and integer, op =
  1234. "utils.c", line 338: warning: illegal combination of pointer and integer, op =
  1235. "utils.c", line 341: warning: illegal combination of pointer and integer, op =
  1236. "xmdialogs.c", line 838: warning: illegal combination of pointer
  1237. and integer, op =
  1238. "xmeditor.c", line 1152: warning: illegal combination of pointer
  1239. and integer, op =
  1240.  
  1241. These warning messages can be ignored. OSF is aware of these warnings.
  1242.  
  1243.  
  1244. -----------------------------------------------------------------------------
  1245. Subject: 117)  On a Sun 3, what are the mwm startup error messages about?  I
  1246. get
  1247.  
  1248. mwm: Invalid accelerator specification on line 7 of
  1249.      specification string
  1250. mwm: Invalid accelerator specification on line 31 of
  1251.       configuration file
  1252.  
  1253.  
  1254. Answer: This is because some Sun keyboards do not have an F10 key and some sun
  1255. workstations which have an F10 key do not have X-servers which recognize it.
  1256. The F10 key is used by mwm.  If the machine does have an F10 key, the user
  1257. should use xmodmap to tell the server it exists.  Otherwise, change the
  1258. definition of the DefaultWindowMenu in /usr/lib/X11/system.mwmrc (after
  1259. installation) or in /lib/clients/mwm/system.mwmrc (before installation).
  1260. Change the accelerator of "Maximize" (it is "Alt<Key>F10)" to something else.
  1261. Also, you should change the definition of DEFAULTSYSTEMMENU in the file
  1262. /clients/mwm/WmResource.c in a similar fashion.  There is as yet no standard
  1263. redefinition for F10.
  1264.  
  1265.  
  1266.  
  1267. -----------------------------------------------------------------------------
  1268. Subject: 118)  Are there problems making shared libraries on a Sun?
  1269.  
  1270. Answer: If you use the -pic option you may run out of offset table space.  use
  1271. the -PIC option instead.
  1272.  
  1273. You may get the message "ld.so: Undefined symbol: __XtInherit" when executing
  1274. UIL. There is a problem in shared library build when you compare a function
  1275. variable to a routine name, but don't call the routine.  Either, you can build
  1276. the Xt library nonshared, or you can put a reference to XtToolkitInitialize in
  1277. the UIL main program (or even include a module that references it).  The
  1278. routine doesn't even have to be called; it just has to be there.
  1279.  
  1280.  
  1281. -----------------------------------------------------------------------------
  1282. Subject: 119)  The OpenWindows server hangs when I popup a menu with Button 3.
  1283. [Last modified: August 92]
  1284.  
  1285. Answer: This is an OpenWindows problem, but if you have Motif source you can
  1286. fix your own applications. From Steve Sistare of Thinking Machines Corp.:
  1287. "Change the 2 calls to XtGrabButton in RowColumn.c such that ButtonReleaseMask
  1288. | ButtonPressMask is passed for the event mask.  Currently, only
  1289. ButtonReleaseMask is passed.  Also, change the owner_event argument to FALSE.
  1290. " This has not been fixed in Motif as at 1.1.5.
  1291.  
  1292. -----------------------------------------------------------------------------
  1293. Subject: 120)  Has anyone made shared libraries on an IBM RS/6000?
  1294.  
  1295. Answer: From Sakari Jalovaara: There is a problem: Xm redefines VendorShell
  1296. and the AIX linker put _both_ Xm's and Xt's VendorShell into programs.  When
  1297. an AIX shared library is created as many references inside the library are
  1298. resolved as possible.  If the symbol vendorShellClassRec is defined in libXt
  1299. and referenced, say, from a function XtFoo() also in libXt, the "ld" run that
  1300. creates the shared library resolves the reference:
  1301.  
  1302.         XtFoo() -> vendorShellClassRec
  1303.  
  1304. Then I create the Motif library that has its own vendorShellClassRec and an
  1305. XmBar() function that uses it; libXm will also contain a resolved reference to
  1306. vendorShellClassRec:
  1307.  
  1308.         XmBar() -> vendorShellClassRec
  1309.  
  1310. Finally, I link a program that uses both XtFoo() and XmBar() and the program
  1311. will end up with _two_ independent "vendorShellClassRec"s:
  1312.  
  1313.         XtFoo() -> vendorShellClassRec [Xt version]
  1314.         XmBar() -> vendorShellClassRec [Xm version]
  1315.  
  1316. Instant schizo zaphod mode.  In reality, vendorShellClassRec is not referenced
  1317. from functions but from other widget class records.
  1318.  
  1319. I can't just pull Vendor.o out from the shared Xt (Vendor.o appears to define
  1320. the only external symbols redefined by libXm) because AIX shared libraries
  1321. apparently can't contain unresolved external references.  If I take out
  1322. Vendor.o I have to take out every other file that uses symbols defined there -
  1323. and then files that need those files, etc.  I tried it and ended up with three
  1324. or four object files in libXt and the res non-sharable.
  1325.  
  1326. I kludged around this by putting all of libXt (minus Vendor.o) into the shared
  1327. libXm.  It isn't a pretty solution but it works - and beats having a
  1328. statically linked two-megabyte "periodic" demo...
  1329.  
  1330.  
  1331. -----------------------------------------------------------------------------
  1332. Subject: 121)  What is the error  "Unaligned access in XmString" under Ultrix?
  1333.  
  1334. Answer: Compile  XmString.c with STRINGS_ALIGNED.
  1335.  
  1336. -----------------------------------------------------------------------------
  1337. Subject: 122)  TOPIC: KEYSYMS
  1338.  
  1339. -----------------------------------------------------------------------------
  1340. Subject: 123)  What is causing the messages "unknown keysym osfDown..."?  It
  1341. happens when I run an application under Motif 1.1
  1342.  
  1343. Answer: There is an OSF supplied addition to the /usr/lib/X11/XKeysymDB file.
  1344. It is found on the release tape and should have been automatically installed
  1345. if the installation procedure was followed in the Release Notes.
  1346.  
  1347. You have to copy (or append) lib/Xm/XKeysymDB into /usr/lib/X11.  This may
  1348. require root permission.  It is not clear how to fix the problem if you can't
  1349. do this.  The error comes from Xt translation table parsing and can't be fixed
  1350. in Motif, so if you can't get root permission you may be stuck.  The file is
  1351. not copyrighted so you can install it on other systems.
  1352.  
  1353. If X has been built so that XKeysymDB is not in this directory, and you don't
  1354. know where it is looking, run 'strings libX11.a | grep XKeysymDB' to find the
  1355. path.
  1356.  
  1357. On a Sun running openwin with shared libraries, you may need to put the path
  1358. for the library containing XKeysymDB *first* in the path list in
  1359. LD_LIBRARY_PATH, or it may find the wrong XKeysymDB in the wrong directory.
  1360.  
  1361. XKeysymDB simply contains the registered keysym values for the OSF keysyms.
  1362. The OSF values are server-independent.  And, all registered keysyms will be
  1363. included in an XKeysymDB file to be shipped with X11R5.
  1364.  
  1365. In the meantime (till all systems are X11R5+), a list of the registered
  1366. keysyms can be found in the X11R4 release in mit/doc/Registry/Xregistry.
  1367.  
  1368. Also note the XKEYSYMDB environment variable. Setting this to point to the
  1369. XKeysymDB file often helps, but not always...
  1370.  
  1371.  
  1372. -----------------------------------------------------------------------------
  1373. Subject: 124)  What happens if I can't install Motif Keysyms?
  1374.  
  1375. From: tessi!george@nosun.West.Sun.COM (George Mitchell)
  1376.  
  1377. Here's what appears to happen if you don't have XKeysymDB in place to define
  1378. OSF's virtual keysyms:
  1379.  
  1380. 1. At class initialize time, for a widget (such as XmText) that uses virtual
  1381. keysyms in its event translation table, all entries which refer to those
  1382. keysyms fail to parse correctly.  In the case of XmText, instead of ending up
  1383. with a translation table with roughly 90 entries, you end up with one that has
  1384. 29.
  1385.  
  1386. 2. XKeysymDB doesn't exist, so you'd assume that KeyPress events will get
  1387. translated to plain vanilla keysyms, right?  WRONG!  All Motif widgets install
  1388. a virtual keysym translator ANYWAY!  Consequently, the backspace key (for
  1389. example) gets translated to the keysym osfBackSpace.
  1390.  
  1391. 3. Therefore, if you augment or override your widget's translations with
  1392. translations that refer to plain vanilla BackSpace, they will never be
  1393. triggered, because you will NEVER see plain vanilla BackSpace, only
  1394. osfBackSpace.
  1395.  
  1396. 4. But you can't use osfBackSpace in an event translation entry, because you
  1397. don't have XKeysymDB installed!
  1398.  
  1399. Here's how I'm "dealing" with the problem right now: Motif installs its
  1400. virtual keysym translator by calling XtSetKeyTranslator every time a
  1401. VendorShell (or subclass) widget is created.  So every time I create a shell,
  1402. I immediately call XtSetKeyTranslator (display, XtTranslateKey) to restore the
  1403. default translator.  No more funny virtual keysyms!  Now I can reinstall non-
  1404. osfKeySym translations and have them work the way I expect.
  1405.  
  1406.  
  1407. -----------------------------------------------------------------------------
  1408. Subject: 125)  Why has OSF introduced Keysyms into Motif 1.1?  They weren't
  1409. there in Motif 1.0.
  1410.  
  1411. Answer: From: ellis@osf.org
  1412.  
  1413. Virtual Keysyms are meant to provide a consistent keyboard model for Motif
  1414. applications running in a heterogeneous environment in which proprietary (i.e.
  1415. vendor specific) non-Motif applications may also be running.
  1416.  
  1417. First of all, for the sake of the rest of the readers, let's explain why this
  1418. is an issue:
  1419.  
  1420. It would be lovely if Motif's translation tables could just use the obvious
  1421. keysyms predefined by X.  For example, there are keysyms for XK_BackSpace,
  1422. XK_Delete, XK_Left, XK_Right, etc.  Shouldn't these be the ones that are used
  1423. in our translations?  Unfortunately, the problem is not so simple.  Some
  1424. specific examples:
  1425.  
  1426.    While most vendors bind XK_BackSpace to the key at the top right
  1427.    of the standard keyboard (often engraved with a leftwards
  1428.    pointing arrow), not all do.  In fact, some vendors (including DEC)
  1429.    bind that key to XK_Delete.
  1430.  
  1431.    While most vendors bind the arrow keys to XK_Up, etc, a number of
  1432.    vendors (including Sun, on some servers) bind them to function key
  1433.    keysyms.
  1434.  
  1435. A simplistic solution would require the use of xmodmap to change the offending
  1436. bindings.  That would work swell in an all Motif environment.  However, OSF's
  1437. goal (not always perfectly achieved) is interoperability.  That is, we'd like
  1438. to make sure that both Motif and non-Motif programs can happily run in the
  1439. same environment.
  1440.  
  1441. It is expected that a vendor may have a wide variety of existing X-based
  1442. software that uses the keysyms as established by that vendor for specific
  1443. purposes.  It is expected that these applications may run at the same time as
  1444. Motif-based software.  Using xmodmap to change keysyms on the server side
  1445. could "break" the existing applications (or at the very least their
  1446. documentation) by making some keys unavailable, or by moving the location.
  1447.  
  1448. So, we chose not to use xmodmap.  By the way, though OpenLook uses a different
  1449. implementation (they recompile their virtual translation tables into actual
  1450. translation tables), they basically adopted the same approach, presumably for
  1451. similar reasons.
  1452.  
  1453. To work properly, the virtual keysym model we implemented depends on Xlib
  1454. finding XKeysymDB installed appropriately (which standard Motif installation
  1455. does).  This simply defines the keysyms (not the key they are bound to).  This
  1456. unfortunate piece of stupidity is necessary because MIT only includes standard
  1457. keysyms in keysymdef.h.  It should be said that our lives would be made easier
  1458. if MIT would also see fit to include registered keysyms in keysymdef.h as
  1459. well.
  1460.  
  1461. Motif applications determine how to bind virtual to actual keys by looking for
  1462. either a resource or a property on the root window which describes what to do.
  1463. Note that this information is on the server side, so that all applications use
  1464. the same virtual bindings regardless of where they are running.  Mwm will
  1465. happily create the property if it finds a .motifbind file in your home
  1466. directory when it starts up.  (Actually, things generally work even if none of
  1467. this is done, since if all else fails, the Motif toolkit chooses a virtual
  1468. bindings table to use based on the identification of the server).
  1469.  
  1470. The actual implementation of virtual keys is made possible by a hook in the
  1471. Intrinsics.  Undoubtably, the implementation would be simpler and cleaner if
  1472. virtual key support was more directly supported by the Intrinsics.  We will be
  1473. exploring this possibility in the future.
  1474.  
  1475.   -- Ellis
  1476.  
  1477. -----------------------------------------------------------------------------
  1478. END OF PART FOUR
  1479. -- 
  1480. ..........................
  1481.  
  1482.  
  1483.